home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / MacPNG Library 1.02 / pngMacSrc 1.02 / png.1 / gif2png / version.c < prev   
C/C++ Source or Header  |  1996-05-29  |  625b  |  32 lines

  1. /*
  2.  * version.c
  3.  * Copyright (C) 1995 Alexander Lehmann
  4.  * For conditions of distribution and use, see copyright notice in gif2png.h
  5.  */
  6. #include "png.h"
  7.  
  8. #ifndef PNG_LIBPNG_VER_STRING
  9. #ifndef PNGLIB
  10. #define PNGLIB " 1.0 beta 1 - version 0.71 June 26, 1995"
  11. #endif
  12. #else
  13. #ifndef PNGLIB
  14. #define PNGLIB PNG_LIBPNG_VER_STRING
  15. #endif
  16. #endif
  17. #ifndef ZLIB_VERSION
  18. #ifndef ZLIB
  19. #define ZLIB "version 0.93 June 25th, 1995."
  20. #endif
  21. #else
  22. #ifndef ZLIB
  23. #define ZLIB ZLIB_VERSION
  24. #endif
  25. #endif
  26. const char version[]="gif2png 0.51 (beta) "
  27. #ifdef TMPFILE
  28. "(TMPFILE) "
  29. #endif
  30. "compiled " __DATE__ " with pnglib " PNGLIB " and zlib " ZLIB;
  31.  
  32.